DailyEvaluationCalendar

fun DailyEvaluationCalendar(modifier: Modifier = Modifier, evaluations: List<DailyEvaluationEntry>, selectedDate: LocalDate?, onDateSelect: (LocalDate?) -> Unit)

Displays a calendar for daily evaluations and allows the user to select a date.

Parameters

modifier

A Modifier to customize the UI.

evaluations

A list of DailyEvaluationEntry to display on the calendar.

selectedDate

The currently selected date in the calendar.

onDateSelect

A lambda function that handles the date selection.